format. "Character" means special data lines can have their own
separator.
- Since release 6.1 GPX is a also a supported import/export format for
+ Since release 6.1 GPX is also a supported import/export format for
waypoints, routes and tracks.
For more information please have a look at
Options:
- index: Index of route/track
- snlen: Length of generated short names (default 16)
+ deficon: Default icon name
+ index: Use route/track number <index> from input data for output.
+ radius: Give points (waypoints/route points)
+ a default radius (proximity)
+ snlen: Length of generated short names (default 16)
DATA FILTERS
NULL, ARGTYPE_STRING},
{"index", &option_index, "Index of route/track to write (if more the one in source)",
NULL, ARGTYPE_INT},
- {"radius", &option_radius, "Give points (waypoints/route points) a default radius",
+ {"radius", &option_radius, "Give points (waypoints/route points) a default radius (proximity)",
NULL, ARGTYPE_FLOAT},
{"snlen", &option_snlen, "Length of generated shortnames (default 16)",
NULL, ARGTYPE_INT},
{
char *icon = option_icon;
- if (wpt->icon_descr != NULL) icon = wpt->icon_descr;
+ if (wpt->icon_descr != NULL) icon = (char *) wpt->icon_descr;
fprintf(fout, "w %s,0,0.0,16777215,255,1,7,,%.1f\n",
(icon != NULL) ? icon : "Waypoint",
if (wpt->creation_time != 0)
{
- char *cx = &buff;
+ char *cx = buff;
tm = *gmtime(&wpt->creation_time);
strftime(buff, sizeof(buff), "%d-%b-%y %H:%M:%S", &tm);
while (*cx != '\0')